textlint で info レベルを使う
textlint は、提案ツールではなく lint ツールであるため。
なるべく textlint のプラグインシステムを使いたい。
しかし、.textlintrc で info severity を使おうとすると、warning 扱いになる。
code: .textlintrc
{
"rules": {
"en-spell": {
"severity" : "info"
}
}
}
code: bash
$ textlint test.txt
/home/hata6502/textlint-test/test.txt
1:1 ✓ warning typimg => typing en-spell
✖ 1 problem (0 errors, 1 warning)
✓ 1 fixable problem.
Try to run: $ textlint --fix file ソースコード上には info severity が存在している?
code: tsx
{
ruleId: 'ja-sudachi-synonym-suggestion',
rule: textlintRuleJaSudachiSynonymSuggestion,
options: {
severity: 'info',
},
},
https://gyazo.com/0ab80fe6057aaec47d124b8cf58372bf
できた。
https://gyazo.com/78bfffdcbfcea1246bde84d10a35daa3